From fcdccb56da6241bef02a468da6438baf89184425 Mon Sep 17 00:00:00 2001 From: "arun.sharma@intel.com[kaf24]" Date: Thu, 9 Jun 2005 07:41:40 +0000 Subject: [PATCH] bitkeeper revision 1.1691.1.14 (42a7f2b43iPqu7TV41Z28IeI0Wj1Vg) [PATCH] vmresume-vmx-bug.patch If vmresume/launch fails, only the affected domain should crash. Signed-off-by: Arun Sharma --- xen/arch/x86/vmx_vmcs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/x86/vmx_vmcs.c b/xen/arch/x86/vmx_vmcs.c index c27daedc48..5fed12c279 100644 --- a/xen/arch/x86/vmx_vmcs.c +++ b/xen/arch/x86/vmx_vmcs.c @@ -445,12 +445,12 @@ int store_vmcs(struct arch_vmx_struct *arch_vmx, u64 phys_ptr) void vm_launch_fail(unsigned long eflags) { - BUG(); + __vmx_bug(guest_cpu_user_regs()); } void vm_resume_fail(unsigned long eflags) { - BUG(); + __vmx_bug(guest_cpu_user_regs()); } #endif /* CONFIG_VMX */ -- 2.30.2